DicomObjects.NET.V8
DicomObjects Namespace / DicomImage Class / AddByReference Method / AddByReference(Keyword,String,Byte[]) Method
Attribute tag to add
Attribute VR to add
Attribute value as byte array



In This Topic
    AddByReference(Keyword,String,Byte[]) Method
    In This Topic
    Add byte[] as attribute value to avoid copying large data
    Syntax
    'Declaration
     
    Public Overloads Sub AddByReference( _
       ByVal keyword As Keyword, _
       ByVal VR As String, _
       ByVal Value() As Byte _
    ) 
    'Usage
     
    Dim instance As DicomImage
    Dim keyword As Keyword
    Dim VR As String
    Dim Value() As Byte
     
    instance.AddByReference(keyword, VR, Value)
    public void AddByReference( 
       Keyword keyword,
       string VR,
       byte[] Value
    )
    public:
    void AddByReference( 
       Keyword keyword,
       String^ VR,
       array<byte>^ Value
    ) 

    Parameters

    keyword
    Attribute tag to add
    VR
    Attribute VR to add
    Value
    Attribute value as byte array
    Requirements

    Target Platforms: .NET CLR 4.0 or higher

    See Also